翻訳と辞書
Words near each other
・ Database abstraction layer
・ Database activity monitoring
・ Database administration and automation
・ Database administrator
・ Database and Collections of Information Misappropriation Act
・ Database application
・ Database audit
・ Database caching
・ Database catalog
・ Database cinema
・ Database connection
・ Database Console Commands (Transact-SQL)
・ Database Deployment Manager
・ Database design
・ Database Directive
Database dump
・ Database encryption
・ Database engine
・ Database engine tuning advisor
・ Database for bacterial group II introns
・ Database forensics
・ Database index
・ Database journalism
・ Database machine
・ Database Management Library
・ Database marketing
・ Database Marketing Agency
・ Database model
・ Database Nation
・ Database normalization


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Database dump : ウィキペディア英語版
Database dump

:''For information on obtaining the Wikipedia database, see Wikipedia:Database download.''
A database dump contains a record of the table structure and/or the data from a database and is usually in the form of a list of SQL statements. A database dump is most often used for backing up a database so that its contents can be restored in the event of data loss. Corrupted databases can often be recovered by analysis of the dump. Database dumps are often published by free software and free content projects, to allow reuse or forking of the database.
== Example ==

-- Database
CREATE DATABASE `example`;
USE `example`;
-- Table structure for table `users`
CREATE TABLE `users` (
`id` int(8) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(16) NOT NULL,
`password` varchar(16) NOT NULL,
PRIMARY KEY (`id`)
);
-- Data for table `users`
INSERT INTO `users` VALUES (1,'alice','secret'),(2,'bob','secret');


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Database dump」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.